home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / misc / samples2 / newform.bas < prev    next >
BASIC Source File  |  1995-07-23  |  262b  |  10 lines

  1. 'Declare global variable to indicate the # of forms
  2. 'created.  This only reflects new instances created
  3. 'at runtime, not the original form created at design
  4. 'time
  5. Global iNumForms As Integer
  6.  
  7. 'Create a global object type array
  8. Global MyForm() As Form1
  9.  
  10.